home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestBCBAudioEditor2 / Convert.dfm < prev    next >
Encoding:
Text File  |  2002-10-10  |  1.3 KB  |  71 lines

  1. object frmConvert: TfrmConvert
  2.   Left = 551
  3.   Top = 310
  4.   BorderStyle = bsDialog
  5.   Caption = 'Convert Sample Type'
  6.   ClientHeight = 195
  7.   ClientWidth = 290
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   OldCreateOrder = True
  11.   Position = poScreenCenter
  12.   OnShow = FormShow
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object OKBtn: TButton
  16.     Left = 204
  17.     Top = 13
  18.     Width = 75
  19.     Height = 25
  20.     Caption = 'OK'
  21.     Default = True
  22.     ModalResult = 1
  23.     TabOrder = 0
  24.     OnClick = OKBtnClick
  25.   end
  26.   object CancelBtn: TButton
  27.     Left = 204
  28.     Top = 43
  29.     Width = 75
  30.     Height = 25
  31.     Cancel = True
  32.     Caption = 'Cancel'
  33.     ModalResult = 2
  34.     TabOrder = 1
  35.   end
  36.   object rgFrequency: TRadioGroup
  37.     Left = 8
  38.     Top = 8
  39.     Width = 185
  40.     Height = 121
  41.     Caption = 'Frequency (Hz)'
  42.     Columns = 2
  43.     ItemIndex = 8
  44.     Items.Strings = (
  45.       '6000'
  46.       '8000'
  47.       '11025'
  48.       '12000'
  49.       '16000'
  50.       '22050'
  51.       '24000'
  52.       '32000'
  53.       '44100'
  54.       '48000')
  55.     TabOrder = 2
  56.   end
  57.   object rgCnannels: TRadioGroup
  58.     Left = 8
  59.     Top = 136
  60.     Width = 185
  61.     Height = 49
  62.     Caption = 'Channels'
  63.     Columns = 2
  64.     ItemIndex = 1
  65.     Items.Strings = (
  66.       'Mono'
  67.       'Stereo')
  68.     TabOrder = 3
  69.   end
  70. end
  71.